Fix GNU style of two spaces for indent in https://github.com/ostreedev/ostree/pull...
authorHuijing Hei <hhei@redhat.com>
Wed, 25 May 2022 03:12:47 +0000 (11:12 +0800)
committerHuijing Hei <hhei@redhat.com>
Wed, 25 May 2022 03:12:47 +0000 (11:12 +0800)
src/ostree/ot-admin-builtin-deploy.c

index 6691053b25337f5c667c3a9fad404cbc7a48c89d..28a5d9e8fe3c84ec69cdf17b0a2ea04de31800aa 100644 (file)
@@ -87,22 +87,22 @@ ot_admin_builtin_deploy (int argc, char **argv, OstreeCommandInvocation *invocat
     }
 
   if (opt_kernel_proc_cmdline && opt_kernel_arg_none)
-  {
-    ot_util_usage_error (context, "Can't specify both --karg-proc-cmdline and --karg-none", error);
-    return FALSE;
-  }
+    {
+      ot_util_usage_error (context, "Can't specify both --karg-proc-cmdline and --karg-none", error);
+      return FALSE;
+    }
 
   if (opt_kernel_arg_none && opt_kernel_argv_delete)
-  {
-    ot_util_usage_error (context, "Can't specify both --karg-none and --karg-delete", error);
-    return FALSE;
-  }
+    {
+      ot_util_usage_error (context, "Can't specify both --karg-none and --karg-delete", error);
+      return FALSE;
+    }
 
   if (opt_no_merge && opt_kernel_argv_delete)
-  {
-    ot_util_usage_error (context, "Can't specify both --no-merge and --karg-delete", error);
-    return FALSE;
-  }
+    {
+      ot_util_usage_error (context, "Can't specify both --no-merge and --karg-delete", error);
+      return FALSE;
+    }
 
   const char *refspec = argv[1];